from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83229

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-02-12
blackshades - 20070723-r2
Ebuild name:

games-fps/blackshades-20070723-r2

Description

You control a psychic bodyguard, and try to protect the VIP

Added to portage

2026-02-12

blazesym_c - 0.1.7
Ebuild name:

dev-libs/blazesym_c-0.1.7

Description

C bindings for blazesym, a library for address symbolization and related

Added to portage

2026-02-12

calamares - 3.3.14-r6
Ebuild name:

app-admin/calamares-3.3.14-r6

Description

Distribution-independent installer framework

Added to portage

2026-02-12

calamares-gentoo-livecd - 3.3.14_p20260209
Ebuild name:

app-misc/calamares-gentoo-livecd-3.3.14_p20260209

Description

Gentoo Linux Calamares installer configuration fo

Added to portage

2026-02-12

cproc - 0_pre20260113
Ebuild name:

sys-devel/cproc-0_pre20260113

Description

C11 compiler using QBE as backend

Added to portage

2026-02-12

dist-kernel - 5.10.250
Ebuild name:

virtual/dist-kernel-5.10.250

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 5.15.200
Ebuild name:

virtual/dist-kernel-5.15.200

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.1.163
Ebuild name:

virtual/dist-kernel-6.1.163

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.12.70
Ebuild name:

virtual/dist-kernel-6.12.70

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.18.10
Ebuild name:

virtual/dist-kernel-6.18.10

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.6.124
Ebuild name:

virtual/dist-kernel-6.6.124

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

gentoo-kernel - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-5.10.250

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-5.15.200

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-6.1.163

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-6.12.70

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-6.18.10

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-6.6.124

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.250

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.200

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.163

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.70

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.10

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.124

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

libwebsockets - 4.5.2-r1
Ebuild name:

net-libs/libwebsockets-4.5.2-r1

Description

A flexible pure-C library for implementing network protocols

Added to portage

2026-02-12

man-pages - 6.17
Ebuild name:

sys-apps/man-pages-6.17

Description

A somewhat comprehensive collection of Linux man pages

Added to portage

2026-02-12

marisa - 0.2.7
Ebuild name:

dev-libs/marisa-0.2.7

Description

Matching Algorithm with Recursively Implemented StorAge

Added to portage

2026-02-12

mesa - 25.3.5
Ebuild name:

media-libs/mesa-25.3.5

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa - 26.0.0
Ebuild name:

media-libs/mesa-26.0.0

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa_clc - 25.3.5
Ebuild name:

dev-util/mesa_clc-25.3.5

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

mesa_clc - 26.0.0
Ebuild name:

dev-util/mesa_clc-26.0.0

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

moodle - 4.5.10
Ebuild name:

www-apps/moodle-4.5.10

Description

The Moodle Course Management System

Added to portage

2026-02-12

moodle - 5.0.6
Ebuild name:

www-apps/moodle-5.0.6

Description

The Moodle Course Management System

Added to portage

2026-02-12

nginx-mode - 1.1.10
Ebuild name:

app-emacs/nginx-mode-1.1.10

Description

Emacs editing mode for Nginx config files

Added to portage

2026-02-12

nss-docker-ng - 1.1.3
Ebuild name:

sys-auth/nss-docker-ng-1.1.3

Description

NSS plugin for finding Docker containers by their ID or name

Added to portage

2026-02-12

oshu - 2.0.3
Ebuild name:

games-arcade/oshu-2.0.3

Description

Lightweight osu port

Added to portage

2026-02-12

sanlock - 4.2.0
Ebuild name:

sys-cluster/sanlock-4.2.0

Description

shared storage lock manager

Added to portage

2026-02-12

sendmail - 8.18.1.10-r4
Ebuild name:

mail-mta/sendmail-8.18.1.10-r4

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.15-r2
Ebuild name:

mail-mta/sendmail-8.18.1.15-r2

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.16-r1
Ebuild name:

mail-mta/sendmail-8.18.1.16-r1

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sudo-rs - 0.2.12-r1
Ebuild name:

app-admin/sudo-rs-0.2.12-r1

Description

A memory safe implementation of sudo and su.

Added to portage

2026-02-12

tree - 3.18-r1
Ebuild name:

dev-cpp/tree-3.18-r1

Description

An STL-like tree class

Added to portage

2026-02-12

unbound - 1.24.2-r1
Ebuild name:

net-dns/unbound-1.24.2-r1

Description

A validating, recursive and caching DNS resolver

Added to portage

2026-02-12

vanilla-kernel - 5.10.250
Ebuild name:

sys-kernel/vanilla-kernel-5.10.250

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 5.15.200
Ebuild name:

sys-kernel/vanilla-kernel-5.15.200

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.1.163
Ebuild name:

sys-kernel/vanilla-kernel-6.1.163

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.12.70
Ebuild name:

sys-kernel/vanilla-kernel-6.12.70

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.18.10
Ebuild name:

sys-kernel/vanilla-kernel-6.18.10

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.6.124
Ebuild name:

sys-kernel/vanilla-kernel-6.6.124

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vaultwarden - 1.35.3
Ebuild name:

app-admin/vaultwarden-1.35.3

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-02-12

vaultwarden-web - 2026.1.1
Ebuild name:

www-apps/vaultwarden-web-2026.1.1

Description

Prebuilt web vault frontend for Vaultwarden

Added to portage

2026-02-12

2026-02-11
GeographicLib - 2.7
Ebuild name:

sci-geosciences/GeographicLib-2.7

Description

C++ library for converting geographic coordinate systems

Added to portage

2026-02-11

abiword - 3.0.6-r3
Ebuild name:

app-office/abiword-3.0.6-r3

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

abiword - 3.0.7-r1
Ebuild name:

app-office/abiword-3.0.7-r1

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

alembic - 1.18.4
Ebuild name:

dev-python/alembic-1.18.4

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-02-11

assertpy - 1.1
Ebuild name:

dev-python/assertpy-1.1

Description

Simple assertion library for unit testing in python with a fluent API

Added to portage

2026-02-11

at-spi2-core - 2.58.2
Ebuild name:

app-accessibility/at-spi2-core-2.58.2

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-02-11

atril - 1.28.3
Ebuild name:

app-text/atril-1.28.3

Description

Atril document viewer for MATE

Added to portage

2026-02-11

awscli - 1.44.36
Ebuild name:

app-admin/awscli-1.44.36

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-11

behave - 1.3.3
Ebuild name:

dev-python/behave-1.3.3

Description

BDD, Python style

Added to portage

2026-02-11

boto3 - 1.42.46
Ebuild name:

dev-python/boto3-1.42.46

Description

The AWS SDK for Python

Added to portage

2026-02-11

botocore - 1.42.46
Ebuild name:

dev-python/botocore-1.42.46

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-11

bottom - 0.12.3
Ebuild name:

sys-process/bottom-0.12.3

Description

A graphical process/system monitor with a customizable interface

Added to portage

2026-02-11

broot - 1.55.0
Ebuild name:

app-misc/broot-1.55.0

Description

A new way to see and navigate directory trees

Added to portage

2026-02-11

cachetools - 7.0.1
Ebuild name:

dev-python/cachetools-7.0.1

Description

Extensible memoizing collections and decorators

Added to portage

2026-02-11

cake - 6.0.0
Ebuild name:

dev-dotnet/cake-6.0.0

Description

Cake (C Make) is a cross platform build automation system with a C DSL

Added to portage

2026-02-11

cdogs-sdl - 2.4.0
Ebuild name:

games-arcade/cdogs-sdl-2.4.0

Description

Classic overhead run-and-gun game

Added to portage

2026-02-11

checkpassword - 0.90-r6
Ebuild name:

net-mail/checkpassword-0.90-r6

Description

A uniform password checking interface for root applications

Added to portage

2026-02-11

chromium - 145.0.7632.45
Ebuild name:

www-client/chromium-145.0.7632.45

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-11

chrony_exporter - 0.12.3
Ebuild name:

app-metrics/chrony_exporter-0.12.3

Description

Chrony NTP exporter for Prometheus

Added to portage

2026-02-11

claude-code - 2.1.38
Ebuild name:

dev-util/claude-code-2.1.38

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-02-11

clion - 2025.3.1.1
Ebuild name:

dev-util/clion-2025.3.1.1

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

clion - 2025.3.2
Ebuild name:

dev-util/clion-2025.3.2

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

collada-dom - 2.5.0-r3
Ebuild name:

dev-libs/collada-dom-2.5.0-r3

Description

COLLADA Document Object Model (DOM) C++ Library

Added to portage

2026-02-11

connman - 2.0
Ebuild name:

net-misc/connman-2.0

Description

Provides a daemon for managing internet connections

Added to portage

2026-02-11

cpp-httplib - 0.31.0
Ebuild name:

dev-cpp/cpp-httplib-0.31.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-02-11

cppcheck - 2.19.1
Ebuild name:

dev-util/cppcheck-2.19.1

Description

Static analyzer of C/C++ code

Added to portage

2026-02-11

cryptography - 46.0.5
Ebuild name:

dev-python/cryptography-46.0.5

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-02-11

cucumber-expressions - 19.0.0
Ebuild name:

dev-python/cucumber-expressions-19.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-02-11

cucumber-tag-expressions - 9.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-9.0.0

Description

Cucumber tag expression parser

Added to portage

2026-02-11

delve - 1.26.0
Ebuild name:

dev-go/delve-1.26.0

Description

A source-level debugger for the Go programming language

Added to portage

2026-02-11

diffoscope - 312
Ebuild name:

dev-util/diffoscope-312

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-02-11

dot-forward - 0.71-r6
Ebuild name:

net-mail/dot-forward-0.71-r6

Description

Reads sendmail's .forward files under qmail

Added to portage

2026-02-11

dropbox - 241.4.4853
Ebuild name:

net-misc/dropbox-241.4.4853

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-02-11

ebuildtester - 48
Ebuild name:

dev-util/ebuildtester-48

Description

A dockerized approach to test a Gentoo package within a clean stage3 conta

Added to portage

2026-02-11

element-desktop-bin - 1.12.10
Ebuild name:

net-im/element-desktop-bin-1.12.10

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-02-11

elixir - 1.19.5
Ebuild name:

dev-lang/elixir-1.19.5

Description

Elixir programming language

Added to portage

2026-02-11

ell - 0.82
Ebuild name:

dev-libs/ell-0.82

Description

Embedded Linux Library provides core, low-level functionality for system daemons

Added to portage

2026-02-11

erlang - 28.3.1
Ebuild name:

dev-lang/erlang-28.3.1

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-02-11

ettercap - 0.8.4
Ebuild name:

net-analyzer/ettercap-0.8.4

Description

Suite for man in the middle attacks

Added to portage

2026-02-11

firecracker-bin - 1.14.1
Ebuild name:

app-emulation/firecracker-bin-1.14.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-02-11

framework-laptop-kmod - 0_pre20240915
Ebuild name:

app-laptop/framework-laptop-kmod-0_pre20240915

Description

Kernel module to expose more Framework Laptop stuff

Added to portage

2026-02-11

gnome-calendar - 49.1
Ebuild name:

gnome-extra/gnome-calendar-49.1

Description

Manage your calendars with simple and modern interface

Added to portage

2026-02-11

gnome-console - 49.2
Ebuild name:

gui-apps/gnome-console-49.2

Description

A simple user-friendly terminal emulator for the GNOME desktop

Added to portage

2026-02-11

gnome-maps - 49.4
Ebuild name:

sci-geosciences/gnome-maps-49.4

Description

A map application for GNOME

Added to portage

2026-02-11

gnome-software - 49.3
Ebuild name:

gnome-extra/gnome-software-49.3

Description

Gnome install & update software

Added to portage

2026-02-11

gnutls - 3.8.12
Ebuild name:

net-libs/gnutls-3.8.12

Description

Secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2026-02-11

goland - 2025.3.1.1
Ebuild name:

dev-util/goland-2025.3.1.1

Description

Golang IDE by JetBrains

Added to portage

2026-02-11

greenbone-feed-sync - 25.2.0
Ebuild name:

net-analyzer/greenbone-feed-sync-25.2.0

Description

New script for syncing the Greenbone Community Feed

Added to portage

2026-02-11

gsa - 26.10.1
Ebuild name:

net-analyzer/gsa-26.10.1

Description

Greenbone Security Assistant

Added to portage

2026-02-11

gvm-tools - 25.4.5
Ebuild name:

net-analyzer/gvm-tools-25.4.5

Description

Remote control for Greenbone Vulnerability Manager, previously named

Added to portage

2026-02-11

hashcat - 7.1.2-r1
Ebuild name:

app-crypt/hashcat-7.1.2-r1

Description

World's fastest and most advanced password recovery utility

Added to portage

2026-02-11

hyfetch - 2.0.5
Ebuild name:

app-misc/hyfetch-2.0.5

Description

Neofetch with LGBTQ+ pride flags

Added to portage

2026-02-11

immutabledict - 4.3.0
Ebuild name:

dev-python/immutabledict-4.3.0

Description

An immutable wrapper around dictionaries

Added to portage

2026-02-11

intel-microcode - 20260210_p20260211
Ebuild name:

sys-firmware/intel-microcode-20260210_p20260211

Description

Intel IA32/IA64 microcode update data

Added to portage

2026-02-11

iwd - 3.11
Ebuild name:

net-wireless/iwd-3.11

Description

Wireless daemon for linux

Added to portage

2026-02-11

josm-bin - 19481
Ebuild name:

sci-geosciences/josm-bin-19481

Description

Java-based editor for the OpenStreetMap project

Added to portage

2026-02-11

jupyterlab - 4.5.4
Ebuild name:

dev-python/jupyterlab-4.5.4

Description

JupyterLab computational environment

Added to portage

2026-02-11

kexec-tools - 2.0.32-r1
Ebuild name:

sys-apps/kexec-tools-2.0.32-r1

Description

Load another kernel from the currently executing Linux kernel

Added to portage

2026-02-11

leiningen-bin - 2.12.0
Ebuild name:

dev-java/leiningen-bin-2.12.0

Description

Automate Clojure projects without setting your hair on fire

Added to portage

2026-02-11

libconfig - 1.8.2
Ebuild name:

dev-libs/libconfig-1.8.2

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2026-02-11

libdatrie - 0.2.14
Ebuild name:

dev-libs/libdatrie-0.2.14

Description

Double-Array Trie Library

Added to portage

2026-02-11

libdatrie - 0.2.14-r1
Ebuild name:

dev-libs/libdatrie-0.2.14-r1

Description

Double-Array Trie Library

Added to portage

2026-02-11

libftd2xx - 1.4.33
Ebuild name:

dev-embedded/libftd2xx-1.4.33

Description

Library that allows a direct access to a USB device

Added to portage

2026-02-11

libjxl - 0.11.2
Ebuild name:

media-libs/libjxl-0.11.2

Description

JPEG XL image format reference implementation

Added to portage

2026-02-11

libmateweather - 1.28.2
Ebuild name:

dev-libs/libmateweather-1.28.2

Description

MATE library to access weather information from online services

Added to portage

2026-02-11

libopusenc - 0.3
Ebuild name:

media-libs/libopusenc-0.3

Description

High-level API for encoding .opus files

Added to portage

2026-02-11

libp11 - 0.4.17
Ebuild name:

dev-libs/libp11-0.4.17

Description

Abstraction layer to simplify PKCS11 API

Added to portage

2026-02-11

librist - 0.2.11
Ebuild name:

net-libs/librist-0.2.11

Description

Library for Reliable Internet Stream Transport (RIST) protocol

Added to portage

2026-02-11

libsecp256k1 - 0.7.1
Ebuild name:

dev-libs/libsecp256k1-0.7.1

Description

Optimized C library for EC operations on curve secp256k1

Added to portage

2026-02-11

libthai - 0.1.30
Ebuild name:

dev-libs/libthai-0.1.30

Description

Set of Thai language support routines

Added to portage

2026-02-11

libthai - 0.1.30-r1
Ebuild name:

dev-libs/libthai-0.1.30-r1

Description

Set of Thai language support routines

Added to portage

2026-02-11

liburing - 2.14
Ebuild name:

sys-libs/liburing-2.14

Description

Efficient I/O with io_uring

Added to portage

2026-02-11

litecli - 1.17.1
Ebuild name:

dev-db/litecli-1.17.1

Description

CLI for SQLite with auto-completion and syntax highlighting

Added to portage

2026-02-11

lvm2 - 2.03.37
Ebuild name:

sys-fs/lvm2-2.03.37

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2026-02-11

lxdream - 0.9.1-r5
Ebuild name:

games-emulation/lxdream-0.9.1-r5

Description

An emulator for the Sega Dreamcast system

Added to portage

2026-02-11

man-db - 2.13.0-r1
Ebuild name:

sys-apps/man-db-2.13.0-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

man-db - 2.13.1-r1
Ebuild name:

sys-apps/man-db-2.13.1-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

mbedtls - 3.6.5
Ebuild name:

net-libs/mbedtls-3.6.5

Description

Cryptographic library for embedded systems

Added to portage

2026-02-11

melonds-jg - 1.1.0
Ebuild name:

games-emulation/melonds-jg-1.1.0

Description

Jolly Good Port of melonDS

Added to portage

2026-02-11

mkdocs-autorefs - 1.4.4
Ebuild name:

dev-python/mkdocs-autorefs-1.4.4

Description

Automatically link across pages in MkDoc

Added to portage

2026-02-11

mod_qos - 11.77
Ebuild name:

www-apache/mod_qos-11.77

Description

A QOS module for the apache webserver

Added to portage

2026-02-11

multipath-tools - 0.14.3
Ebuild name:

sys-fs/multipath-tools-0.14.3

Description

Device mapper target autoconfig

Added to portage

2026-02-11

mycli - 1.51.1
Ebuild name:

dev-db/mycli-1.51.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-02-11

mydumper - 0.21.3.1
Ebuild name:

dev-db/mydumper-0.21.3.1

Description

A high-performance multi-threaded backup (and restore) toolset for MySQL

Added to portage

2026-02-11

mysqlclient - 2.2.8
Ebuild name:

dev-python/mysqlclient-2.2.8

Description

Python interface to MySQL

Added to portage

2026-02-11

nDPI - 4.8
Ebuild name:

net-libs/nDPI-4.8

Description

Open Source Deep Packet Inspection Software Toolkit

Added to portage

2026-02-11

nbdime - 4.0.4
Ebuild name:

dev-python/nbdime-4.0.4

Description

Diff and merge of Jupyter Notebooks

Added to portage

2026-02-11

nfs-utils - 2.8.5
Ebuild name:

net-fs/nfs-utils-2.8.5

Description

NFS client and server daemons

Added to portage

2026-02-11

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-02-11

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-02-11

no-littering - 1.8.2
Ebuild name:

app-emacs/no-littering-1.8.2

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.3
Ebuild name:

app-emacs/no-littering-1.8.3

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.4
Ebuild name:

app-emacs/no-littering-1.8.4

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

openpgp-keys-aacid - 20260210
Ebuild name:

sec-keys/openpgp-keys-aacid-20260210

Description

OpenPGP keys used by Albert Astals Cid

Added to portage

2026-02-11

openpgp-keys-chrislamb - 20260211
Ebuild name:

sec-keys/openpgp-keys-chrislamb-20260211

Description

OpenPGP key used by Chris Lamb

Added to portage

2026-02-11

openpgp-keys-cjwatson - 20260210
Ebuild name:

sec-keys/openpgp-keys-cjwatson-20260210

Description

OpenPGP key used by Colin Watson

Added to portage

2026-02-11

openpgp-keys-coreutils - 20260210
Ebuild name:

sec-keys/openpgp-keys-coreutils-20260210

Description

OpenPGP keys used by GNU coreutils

Added to portage

2026-02-11

openpgp-keys-gnutls - 20260210
Ebuild name:

sec-keys/openpgp-keys-gnutls-20260210

Description

OpenPGP keys used by GnuTLS

Added to portage

2026-02-11

openpgp-keys-handbrake - 20260208
Ebuild name:

sec-keys/openpgp-keys-handbrake-20260208

Description

OpenPGP keys used to sign HandBrake

Added to portage

2026-02-11

openpgp-keys-hughsie - 20260210
Ebuild name:

sec-keys/openpgp-keys-hughsie-20260210

Description

OpenPGP key used by Richard Hughes (hughsie)

Added to portage

2026-02-11

openpgp-keys-lassecollin - 20260210
Ebuild name:

sec-keys/openpgp-keys-lassecollin-20260210

Description

OpenPGP keys used by Lasse Collin

Added to portage

2026-02-11

openpgp-keys-leiningen - 20260128
Ebuild name:

sec-keys/openpgp-keys-leiningen-20260128

Description

OpenPGP keys used to sign Leiningen packages

Added to portage

2026-02-11

openpgp-keys-libseccomp - 20260210
Ebuild name:

sec-keys/openpgp-keys-libseccomp-20260210

Description

OpenPGP key used for sys-libs/libseccomp

Added to portage

2026-02-11

openpgp-keys-libtasn1 - 20260210
Ebuild name:

sec-keys/openpgp-keys-libtasn1-20260210

Description

OpenPGP keys used by GNU Libtasn1

Added to portage

2026-02-11

openpgp-keys-mpc - 20260210
Ebuild name:

sec-keys/openpgp-keys-mpc-20260210

Description

OpenPGP keys used by Andreas Enge (to sign MPC releases)

Added to portage

2026-02-11

openpgp-keys-p11-kit - 20260210
Ebuild name:

sec-keys/openpgp-keys-p11-kit-20260210

Description

OpenPGP key used to sign p11-kit releases

Added to portage

2026-02-11

openpgp-keys-testssl - 20260210
Ebuild name:

sec-keys/openpgp-keys-testssl-20260210

Description

OpenPGP keys used by testssl.sh

Added to portage

2026-02-11

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-11

paml - 4.10.10
Ebuild name:

sci-biology/paml-4.10.10

Description

Phylogenetic Analysis by Maximum Likelihood

Added to portage

2026-02-11

papers - 49.4
Ebuild name:

app-text/papers-49.4

Description

A document viewer for the GNOME desktop

Added to portage

2026-02-11

pg-gvm - 22.6.14
Ebuild name:

dev-db/pg-gvm-22.6.14

Description

Greenbone Library for helper functions in PostgreSQL

Added to portage

2026-02-11

pontos - 25.8.1
Ebuild name:

net-analyzer/pontos-25.8.1

Description

Common utilities and tools maintained by Greenbone Networks

Added to portage

2026-02-11

pycharm-professional - 2025.3.1.1
Ebuild name:

dev-util/pycharm-professional-2025.3.1.1

Description

Intelligent Python IDE with unique code assistance and ana

Added to portage

2026-02-11

pypiserver - 2.4.1
Ebuild name:

dev-python/pypiserver-2.4.1

Description

Minimal PyPI server

Added to portage

2026-02-11

pyproject-fmt - 2.15.2
Ebuild name:

dev-python/pyproject-fmt-2.15.2

Description

Format your pyproject.toml file

Added to portage

2026-02-11

pytest-regressions - 2.10.0
Ebuild name:

dev-python/pytest-regressions-2.10.0

Description

Easy to use fixtures to write regression tests

Added to portage

2026-02-11

python-gvm - 26.9.1
Ebuild name:

net-analyzer/python-gvm-26.9.1

Description

Greenbone Vulnerability Management Python Library

Added to portage

2026-02-11

python-pskc - 1.4
Ebuild name:

dev-python/python-pskc-1.4

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-pskc - 9999
Ebuild name:

dev-python/python-pskc-9999

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-tlsh - 4.12.1
Ebuild name:

dev-python/python-tlsh-4.12.1

Description

Fuzzy matching library - C++ extension for Python

Added to portage

2026-02-11

qlog - 0.48.0
Ebuild name:

media-radio/qlog-0.48.0

Description

Amateur radio logbook software

Added to portage

2026-02-11

qpwgraph - 0.9.8
Ebuild name:

media-sound/qpwgraph-0.9.8

Description

PipeWire Graph Qt GUI Interface

Added to portage

2026-02-11

qtconsole - 5.7.1
Ebuild name:

dev-python/qtconsole-5.7.1

Description

Qt-based console for Jupyter with support for rich media output

Added to portage

2026-02-11

rabbitmq-server - 4.1.8
Ebuild name:

net-misc/rabbitmq-server-4.1.8

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

rabbitmq-server - 4.2.3
Ebuild name:

net-misc/rabbitmq-server-4.2.3

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

radicale - 3.5.10-r1
Ebuild name:

www-apps/radicale-3.5.10-r1

Description

A simple CalDAV calendar server

Added to portage

2026-02-11

recoll - 1.43.10
Ebuild name:

app-misc/recoll-1.43.10

Description

Personal full text search package

Added to portage

2026-02-11

red-blue-quake2 - 0.1-r2
Ebuild name:

games-fps/red-blue-quake2-0.1-r2

Description

Red-blue Quake II Play quake2 with 3D glasses

Added to portage

2026-02-11

redis - 8.2.4
Ebuild name:

dev-db/redis-8.2.4

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

redis - 8.4.1
Ebuild name:

dev-db/redis-8.4.1

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

redis - 8.6.0
Ebuild name:

dev-db/redis-8.6.0

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

rmg - 0.8.9
Ebuild name:

games-emulation/rmg-0.8.9

Description

Rosalie's Mupen GUI

Added to portage

2026-02-11

roundcube - 1.7_rc3
Ebuild name:

mail-client/roundcube-1.7_rc3

Description

A browser-based multilingual IMAP client with an application-like use

Added to portage

2026-02-11

rsync - 3.4.1-r2
Ebuild name:

net-misc/rsync-3.4.1-r2

Description

File transfer program to keep remote files into sync

Added to portage

2026-02-11

rust - 1.93.0
Ebuild name:

dev-lang/rust-1.93.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-1.94.0_beta20260126

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust-bin - 1.93.0
Ebuild name:

dev-lang/rust-bin-1.93.0

Description

Added to portage

2026-02-11

rust-bin - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-bin-1.94.0_beta20260126

Description

Added to portage

2026-02-11

rust-common - 1.93.0
Ebuild name:

dev-lang/rust-common-1.93.0

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-common - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-common-1.94.0_beta20260126

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-std - 1.93.0
Ebuild name:

sys-devel/rust-std-1.93.0

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

rust-std - 1.94.0_beta20260126
Ebuild name:

sys-devel/rust-std-1.94.0_beta20260126

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

sccache - 0.14.0
Ebuild name:

dev-util/sccache-0.14.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2026-02-11

scx - 1.0.20
Ebuild name:

sys-kernel/scx-1.0.20

Description

sched_ext schedulers and tools

Added to portage

2026-02-11

scx-loader - 1.0.20
Ebuild name:

sys-kernel/scx-loader-1.0.20

Description

DBUS on-demand loader of sched-ext schedulers

Added to portage

2026-02-11

sfeed - 2.3
Ebuild name:

net-news/sfeed-2.3

Description

Simple RSS and Atom parser

Added to portage

2026-02-11

signal-desktop-bin - 7.86.0
Ebuild name:

net-im/signal-desktop-bin-7.86.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2026-02-11

signxml - 4.2.2
Ebuild name:

dev-python/signxml-4.2.2

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

signxml - 9999
Ebuild name:

dev-python/signxml-9999

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

skim - 1.9.1
Ebuild name:

app-misc/skim-1.9.1

Description

Command-line fuzzy finder

Added to portage

2026-02-11

skim - 2.0.2
Ebuild name:

app-misc/skim-2.0.2

Description

Command-line fuzzy finder

Added to portage

2026-02-11

socat - 1.8.1.0-r1
Ebuild name:

net-misc/socat-1.8.1.0-r1

Description

Multipurpose relay (SOcket CAT)

Added to portage

2026-02-11

strace - 6.19
Ebuild name:

dev-debug/strace-6.19

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2026-02-11

supertux - 0.7.0_beta2
Ebuild name:

games-arcade/supertux-0.7.0_beta2

Description

A run 'n jump platforming game featuring Tux the penguin

Added to portage

2026-02-11

systemc - 3.0.2
Ebuild name:

sci-electronics/systemc-3.0.2

Description

A C++ based modeling platform for VLSI and system-level co-design

Added to portage

2026-02-11

talk-desktop-bin - 2.0.6
Ebuild name:

net-im/talk-desktop-bin-2.0.6

Description

Nextcloud Talk Desktop client

Added to portage

2026-02-11

teamviewer - 15.73.5
Ebuild name:

net-misc/teamviewer-15.73.5

Description

All-In-One Solution for Remote Access and Support over the Internet

Added to portage

2026-02-11

testssl - 3.0.10-r1
Ebuild name:

net-analyzer/testssl-3.0.10-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

testssl - 3.2.2-r1
Ebuild name:

net-analyzer/testssl-3.2.2-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

tiled - 1.11.2_p20260205
Ebuild name:

dev-games/tiled-1.11.2_p20260205

Description

A general purpose tile map editor

Added to portage

2026-02-11

tlsh - 4.12.1
Ebuild name:

dev-libs/tlsh-4.12.1

Description

Fuzzy matching library

Added to portage

2026-02-11

tree-sitter-lua - 0.4.1
Ebuild name:

dev-libs/tree-sitter-lua-0.4.1

Description

Lua grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown - 0.5.2
Ebuild name:

dev-libs/tree-sitter-markdown-0.5.2

Description

Markdown grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown-inline - 0.3.2
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.3.2

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-02-11

treesit-auto - 1.0.9
Ebuild name:

app-emacs/treesit-auto-1.0.9

Description

Automatic installation, usage, fallback for tree-sitter modes in Emacs

Added to portage

2026-02-11

trimesh - 4.11.2
Ebuild name:

dev-python/trimesh-4.11.2

Description

Python library for loading and using triangular meshes

Added to portage

2026-02-11

tuxedo-control-center-bin - 2.1.22
Ebuild name:

app-laptop/tuxedo-control-center-bin-2.1.22

Description

Tool to control performance, energy, fan and comfort se

Added to portage

2026-02-11

tuxedo-drivers - 4.18.2
Ebuild name:

app-laptop/tuxedo-drivers-4.18.2

Description

Kernel modules for TUXEDO laptops

Added to portage

2026-02-11

ucx - 1.19.0
Ebuild name:

sys-cluster/ucx-1.19.0

Description

Unified Communication X

Added to portage

2026-02-11

upx - 5.1.0
Ebuild name:

app-arch/upx-5.1.0

Description

Ultimate Packer for eXecutables (free version using UCL compression and not NRV)

Added to portage

2026-02-11

upx-bin - 5.1.0
Ebuild name:

app-arch/upx-bin-5.1.0

Description

Ultimate Packer for eXecutables, binary version with proprietary NRV compres

Added to portage

2026-02-11

uv - 0.10.2
Ebuild name:

dev-python/uv-0.10.2

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-02-11

uv-build - 0.10.2
Ebuild name:

dev-python/uv-build-0.10.2

Description

PEP517 uv build backend

Added to portage

2026-02-11

vdr - 2.7.9
Ebuild name:

media-video/vdr-2.7.9

Description

Video Disk Recorder - turns a pc into a powerful set top box for DVB

Added to portage

2026-02-11

vdr-live - 3.5.3
Ebuild name:

media-plugins/vdr-live-3.5.3

Description

VDR Plugin Web Access To Settings

Added to portage

2026-02-11

vdr-markad - 4.2.17
Ebuild name:

media-plugins/vdr-markad-4.2.17

Description

VDR Plugin mark advertising in VDR recordings

Added to portage

2026-02-11

vdr-satip - 2.5.1
Ebuild name:

media-plugins/vdr-satip-2.5.1

Description

VDR Plugin integrates SAT>IP network devices seamlessly into VDR

Added to portage

2026-02-11

volatility3 - 2.27.0
Ebuild name:

app-forensics/volatility3-2.27.0

Description

Framework for analyzing volatile memory

Added to portage

2026-02-11

whatsapp-desktop-bin - 0.5.4
Ebuild name:

net-im/whatsapp-desktop-bin-0.5.4

Description

Unofficial electron-based wrapper around WhatsApp Web

Added to portage

2026-02-11

xdebug - 3.5.0
Ebuild name:

dev-php/xdebug-3.5.0

Description

A PHP debugging and profiling extension

Added to portage

2026-02-11

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 82.1 ms